home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / os2 / edm0407s.zip / STAT3SRC.ZIP / STAMSGH.HPP < prev    next >
C/C++ Source or Header  |  1996-04-04  |  484b  |  23 lines

  1. // Messagehandler für die Statuszeile des Main-Windows
  2.  
  3. #ifndef _STAMSGH_HPP_
  4. #define _STAMSGH_HPP_
  5.  
  6. #define INCL_WIN
  7. #include <os2.h>
  8.  
  9. #include <ihandler.hpp>
  10.  
  11. #include "mymsg.h"
  12.  
  13. class AStatusHandler : public IHandler
  14. {
  15.   protected:
  16.     Boolean dispatchHandlerEvent (IEvent& evt);
  17.     virtual Boolean startProcess (IEvent& evt)  = 0;
  18.     virtual Boolean proceed (IEvent& evt)  = 0;
  19.     virtual Boolean endProcess (IEvent& evt)  = 0;
  20. };
  21.  
  22. #endif //_STAMSGH_HPP_
  23.